Android Server Client
24.04.2016 - 12:39
Java diliyle localhostta Server ve Client mimarisini uygulayabiliyorum ancak android'e uyarladığım zaman client tarafında emülatör çöküyor ve cevap vermiyor. Telefonlardan birini Server diğerini Client yapmak istiyorum. Fakat Server'ı Java yapsam bile Client programı ile bağlanamıyorum Client uygulamam çöküyor kodlarım şu şekilde;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
x=(Button)findViewById(R.id.baglantiButton);
x.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String gelen;
try {
Socket sc = new Socket("localhost", 5555);
Toast.makeText(MainActivity.this, "Bağlandı", Toast.LENGTH_SHORT).show();
BufferedReader in=new BufferedReader(new InputStreamReader(sc.getInputStream()));
gelen= in.readLine();
Toast.makeText(MainActivity.this, gelen, Toast.LENGTH_SHORT).show();
in.close();
sc.close();
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
90
Görüntülenme
0 Beğeni